From eba7dfb44ff4faa127d07d2b023d1153e48048ce Mon Sep 17 00:00:00 2001 From: dundargoc <33953936+dundargoc@users.noreply.github.com> Date: Wed, 10 Jul 2024 13:48:32 +0200 Subject: [PATCH] ci(macos): install julia dependency (#268) Otherwise the job fails with the error message "/bin/sh: julia: command not found" --- .github/workflows/make.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/make.yml b/.github/workflows/make.yml index 1ee2299..acc975d 100644 --- a/.github/workflows/make.yml +++ b/.github/workflows/make.yml @@ -18,9 +18,9 @@ jobs: steps: - uses: actions/checkout@v2 # TODO: update makefile to check MANIFEST - # - name: Install dependencies (MacOS) - # if: matrix.config.os == 'macos-latest' - # run: brew install ruby findutils + - name: Install dependencies (MacOS) + if: runner.os == 'macOS' + run: brew install julia - name: Check MANIFEST if: matrix.config.os == 'ubuntu-latest' -- 2.30.2